home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / misc / tds-2.04.lha / TDS / Examples / Oberon / example.mod next >
Text File  |  1994-08-31  |  84b  |  9 lines

  1. MODULE example;
  2.  
  3. IMPORT io;
  4.  
  5. BEGIN
  6.   io.WriteString("Hello World\n");
  7. END example.
  8.  
  9.